home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Business Assistant
/
Business Assistant.iso
/
acctg
/
posinvnb
/
hard.bat
next >
Wrap
DOS Batch File
|
1991-03-13
|
668b
|
32 lines
echo off
cls
ECHO TSL INSTALL FILE Copyright (C) 1991, THE SOFTWARE LABS, All Rights Reserved
ECHO
if %1x == x goto error
if %2x == x goto error
if %1 == %2 goto error
if %2 == a: goto error
if %2 == A: goto error
if %2 == B: goto error
if %2 == b: goto error
ECHO
ECHO Installing program on drive %2, one moment...
%2
cd\
md poss
cd \poss
copy %1*.*
ECHO
ECHO ...Installation complete.
ECHO
ECHO OFF
goto done
:error
echo ** ERROR: you MUST specify the SOURCE and TARGET drives! **
echo If you are trying to install from drive A to C, type INSTALL A: C: [press
echo ENTER] at the A prompt.
echo HARD DISK ONLY!
:done
pause
cls